home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.4 Applications 1997 August / SGI IRIX 6.4 Applications 1997 August.iso / dist / insight.idb / usr / include / helpapi / HelpBroker.h.z / HelpBroker.h
Encoding:
C/C++ Source or Header  |  1997-07-30  |  1.3 KB  |  43 lines

  1. #ifndef HELPBROKER_H
  2. #define HELPBROKER_H
  3.  
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7.  
  8. /*
  9. // HelpBroker.h
  10. //
  11. // Copyright 1993, Silicon Graphics, Inc.
  12. // All Rights Reserved.
  13. //
  14. // This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  15. // the contents of this file may not be disclosed to third parties, copied or
  16. // duplicated in any form, in whole or in part, without the prior written
  17. // permission of Silicon Graphics, Inc.
  18. //
  19. // RESTRICTED RIGHTS LEGEND:
  20. // Use, duplication or disclosure by the Government is subject to restrictions
  21. // as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  22. // and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  23. // successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  24. // rights reserved under the Copyright Laws of the United States.
  25. */
  26.  
  27. #include <X11/Xlib.h>
  28.  
  29. /* XXX The fast atoms optimization relies on these names not changing! */
  30. #define SGI_HELP_REQUEST                "SGI_HELP_REQUEST"
  31. #define SGI_HELP_SERVER                 "SGI_HELP_SERVER"
  32. #define SGI_HELP_SERVER_STARTUP         "sgihelp"
  33.  
  34. extern int SGIHelpInit(Display *in_dsp, char *in_client, char *in_sep);
  35. extern int SGIHelpMsg (char *in_key, char *in_book, char* user_data);
  36. extern int SGIHelpIndexMsg (char *in_key, char *in_book);
  37.  
  38. #ifdef __cplusplus
  39. }
  40. #endif
  41.  
  42. #endif
  43.